home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
mxlibs
/
sblib
/
cardtype.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-06-17
|
719b
|
26 lines
#ifndef CARD_TYPE_H
#define CARD_TYPE_H
/* Type de cartes supporter par la librairie.
Ajouter si desirer a la suite pour les nouveaux modeles.
-------------------------------------------------------- */
enum CARDTYPE
{
ct_NO_CARD = 0,
ct_SB,
ct_SBPRO,
ct_SB16,
ct_SB16ASP
};
/* Description du nom des cartes.
------------------------------ */
static char *cardName[] = { "NO CARD",
"Creative Labs Sound Blaster",
"Creative Labs Sound Blaster Pro",
"Creative Labs Sound Blaster 16",
"Creative Labs Sound Blaster 16 ASP"
};
#endif